home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr35 / pcbulog1.zip / PCBULOG.DOC next >
Text File  |  1993-06-13  |  3KB  |  77 lines

  1. --------------------------------------------------------------------------
  2. --------------------------------------------------------------------------
  3. PCBUlog.DOC       Version 1.0         05/24/87      by ComOne 415-284-9151
  4. --------------------------------------------------------------------------
  5. --------------------------------------------------------------------------
  6.  
  7. PURPOSE:
  8. PCBUlog creates a bulletin containing a list of:
  9.     -users who have called,
  10.     -time of call,
  11.     -date of call,
  12.     -duration of call.
  13. PCBUlog will automatically remove all incidences of the SYSOP.  
  14. (Do you want people to know when you are home or not?)
  15.  
  16. PCBUlog is FREE.  I don't charge for my board, and I don't charge
  17. for PCBUlog.  If you like or don't like the code, stop by and tell
  18. me about it.  (ComOne -415-284-9151)
  19.  
  20. OUTPUT:
  21. An example of the output looks like this:
  22. BARRY           SIMON           05-22-87   18:53  Time Used: 52 minutes
  23. JOSEPH          THUNG           05-22-87   19:47  Time Used: 84 minutes
  24. MICHAEL         MENE            05-22-87   21:24  Time Used: 51 minutes
  25. MEGAN           WILLIAMS        05-22-87   22:21  Time Used: 1 minutes 
  26. STAN            YODER           05-22-87   22:39  Time Used: 8 minutes 
  27. MICHAEL         LAMASTERS       05-22-87   23:14  Time Used: 17 minutes
  28. STAN            YODER           05-22-87   23:36  Time Used: 3 minutes 
  29.  
  30.  
  31. SYNTAX:
  32. PCBUlog caller OUTPUT     
  33. The above example will read the CALLER file, then write the output
  34. to a file called OUTPUT.  The output can then be sorted by the DOS filter
  35. called SORT.  If you have LOTS of callers and your output file gets larger
  36. than 64k, then you will have to use something like SORTF to sort the 
  37. resulting file.  (Sortf is by Vern Buerg and is FAST!!!)  
  38.  
  39. EXAMPLE: 
  40. sort /+30 /R < OUTPUT > BLT4
  41. This example creates the file BLT4 which is sorted by the date of the
  42. call. (This is the way that I create my bulletins.)
  43.  
  44. ANOTHER EXAMPLE:
  45. SORTF output blt4 /+30,20 /R
  46. Will take the file called output and sort it starting at column 30 for
  47. 20 characters in reverse order and then put the sorted file in BLT4.
  48.  
  49.  
  50. GENERAL INFO:
  51.  
  52. This program was written in Microsoft C version 4.  Thank you Microsoft,
  53. for this program could NOT have been written without CodeView.  (Thanks for
  54. putting the CodeView DEMO in the public domain.  I wouldn't have purchased
  55. your compiler without looking at it...)
  56.  
  57. More info?  Suggestions?  Try the Home of PCBUlog.
  58.  
  59. ╒═════════════════════════════════════════════════════╕
  60. │  ┌──────┐                  ┌──────┐                 │
  61. │  │ ┌────┘┌─────┐┌──┬──┐    │ ┌──┐ │ ┌─┐ ┌─┐ ┌────┐  │
  62. │  │ │     │ ┌─┐ ││ ┌┬┐ │    │ │  │ │ │ ├\┤ │ │  ──┤  │
  63. │  │ └────┐│ └─┘ ││ │ │ │    │ └──┘ │ │ │ │ │ │  ──┤  │
  64. │  └──────┘└─────┘└─┘ └─┘    └──────┘ └─┘ └─┘ └────┘  │
  65. │  Call Now: 415-284-9151                             │
  66. │    Sysops: Fowler and Ellen Brown                   │
  67. │   Machine: IBM PC/AT, 60 Meg, EGA/ECD               │
  68. │  Software: PCBoard 11.X/D                           │
  69. │     Modem: 2400/1200/300 Hayes                      │
  70. │ Available: 24 Hours a day.                          │
  71. ╘═════════════════════════════════════════════════════╛
  72.  
  73.  
  74. History of Changes:
  75.  
  76. 05-24-87-  PCBUlog Created.             
  77.